home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / tchk050.arc / TIMEHK.H < prev    next >
C/C++ Source or Header  |  1988-11-19  |  486b  |  10 lines

  1. /* TCHK 0.50 - Howard Kapustein's Turbo C library     11-18-87 */
  2. /* Copyright (C) 1987, Howard Kapustein.  All rights reserved. */
  3.  
  4. /* timehk.c  -  Howard Kapustein's time routines */
  5.  
  6. /* function prototypes */
  7. void delay(int wait);        /* pause for wait * 1/10ths of a second */
  8. char *timetostr(struct time *tsource, boolean seconds, boolean hundreds, boolean ampm);  /* convert time to string */
  9. struct time *strtotime(char *source);       /* convert a string to time */
  10.